home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.UserControl ctlPublisher
- ClientHeight = 660
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 4470
- ScaleHeight = 660
- ScaleWidth = 4470
- Begin VB.TextBox txtPhone
- Height = 285
- Left = 1440
- TabIndex = 3
- Text = "Text2"
- Top = 360
- Width = 2895
- End
- Begin VB.TextBox txtPublisher
- Height = 285
- Left = 1440
- TabIndex = 1
- Text = "Text1"
- Top = 0
- Width = 2895
- End
- Begin VB.Label Label2
- Caption = "Phone Number"
- Height = 255
- Left = 120
- TabIndex = 2
- Top = 360
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "Publisher"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 0
- Width = 1215
- End
- End
- Attribute VB_Name = "ctlPublisher"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Private Sub txtPhone_Change()
- PropertyChanged "PublisherName"
- End Sub
-
- Private Sub txtPublisher_Change()
- PropertyChanged "PublisherName"
- End Sub
-
- Public Property Get PublisherName() As String
- Attribute PublisherName.VB_MemberFlags = "14"
- PublisherName = txtPublisher.Text
- End Property
-
- Public Property Let PublisherName(ByVal vNewValue As String)
- txtPublisher.Text = vNewValue
- End Property
-
- Public Property Get PublisherPhone() As String
- Attribute PublisherPhone.VB_MemberFlags = "14"
- PublisherPhone = txtPhone.Text
- End Property
-
- Public Property Let PublisherPhone(ByVal vNewValue As String)
- txtPhone.Text = vNewValue
- End Property
-